home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / boot / decprom / RCS / fsBoot.h,v < prev    next >
Encoding:
Text File  |  1991-08-31  |  1.3 KB  |  63 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    jhh:1.1; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     90.02.16.16.14.23;  author shirriff;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @@
  17.  
  18.  
  19.  
  20. 1.1
  21. log
  22. @Initial revision
  23. @
  24. text
  25. @/*
  26.  * fsBoot.h --
  27.  *
  28.  *      Boot program include fileto get needed FS header files.
  29.  *
  30.  * Copyright 1987 Regents of the University of California
  31.  * All rights reserved.
  32.  * Permission to use, copy, modify, and distribute this
  33.  * software and its documentation for any purpose and without
  34.  * fee is hereby granted, provided that the above copyright
  35.  * notice appear in all copies.  The University of California
  36.  * makes no representations about the suitability of this
  37.  * software for any purpose.  It is provided "as is" without
  38.  * express or implied warranty.
  39.  *
  40.  * $Header: /sprite/src/kernel/fs/RCS/fsInt.h,v 8.9 89/05/14 13:59:20 brent Exp Locker: brent $ SPRITE (Berkeley)
  41.  */
  42.  
  43. #ifndef _FSBOOT
  44. #define _FSBOOT
  45.  
  46. #include "fs.h"
  47. #include <kernel/fslcl.h>
  48. #include <kernel/fsdm.h>
  49. #include "fsIndex.h"
  50. #include <kernel/fsio.h>
  51. #include <kernel/fsioFile.h>
  52. #include <kernel/fsioDevice.h>
  53. #include "boot.h"
  54.  
  55. extern Fs_Device         fsDevice;
  56. extern    Fsdm_Domain        *fsDomainPtr;
  57. extern Fsio_FileIOHandle    *fsRootHandlePtr;
  58.  
  59. #define mnew(type)    (type *)malloc(sizeof(type))
  60.  
  61. #endif _FSBOOT
  62. @
  63.